home *** CD-ROM | disk | FTP | other *** search
/ Best Tools for JAVA / Best Tools for JAVA.iso / JAVA_ALL / IDE / SUBARTIC / SUB_ARCT / INPUT / SIMPLE_P.JAV < prev    next >
Encoding:
Text File  |  1996-10-04  |  1.6 KB  |  42 lines

  1. package sub_arctic.input;
  2.  
  3. /** 
  4.  * Input protocol for objects receiving input from the simple_press_drag agent.
  5.  * This agent is a hybrid positional-focus.  It responds to press events
  6.  * over an object, by making that object the move_drag focus.  The actual
  7.  * input protocol is the same as simple_drag (i.e., the object never gets or 
  8.  * handles, the press, only the drag). <p>
  9.  *
  10.  * Note: this protocol adds no methods over simple_draggable.  This exists
  11.  * so we can differentiate between objects with want us to handle the press
  12.  * for them, and objects which just want simple_draggable dispatch.<p>
  13.  *
  14.  * @see sub_arctic.input.pressable
  15.  * @see sub_arctic.input.simple_draggable
  16.  * @see sub_arctic.input.simple_press_drag_agent
  17.  *
  18.  * @author Scott Hudson
  19.  */
  20. public interface simple_press_draggable extends simple_draggable {
  21.  
  22.   /* No extra methods over simple_draggable -- we just need to mark objects 
  23.    * using this via the simple_press_draggable interface name.
  24.    */
  25. }
  26. /*=========================== COPYRIGHT NOTICE ===========================
  27.  
  28. This file is part of the subArctic user interface toolkit.
  29.  
  30. Copyright (c) 1996 Scott Hudson and Ian Smith
  31. All rights reserved.
  32.  
  33. The subArctic system is freely available for most uses under the terms
  34. and conditions described in 
  35.   http://www.cc.gatech.edu/gvu/ui/sub_arctic/sub_arctic/doc/usage.html 
  36. and appearing in full in the lib/interactor.java source file.
  37.  
  38. The current release and additional information about this software can be 
  39. found starting at: http://www.cc.gatech.edu/gvu/ui/sub_arctic/
  40.  
  41. ========================================================================*/
  42.